
      body {
        margin: 0; /* Supprime les marges par défaut */
        height: 100vh;
        background-image: url("../Images/background2.png"); /* Replace 'background.jpg' with the path to your image */
        background-size: cover; /* Ensure the image covers the entire background */
        background-position: center; /* Center the background image */
        background-attachment: fixed;
        overflow-x: hidden;
      }

.kofi-custom-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fcbf47;
  color: #000;
  font-family: "Comic Sans MS", Simpsons, sans-serif;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 999;
}
.kofi-custom-button:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.5);
}
.kofi-logo {
  height: 20px;
}

.about-button {
  position: fixed;
  bottom: 20px;
  left: 20px; /* <-- au lieu de right */
  font-size: 15px;
  background-color: #ffc107;
  color: black;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  transition: background-color 0.3s;
  z-index: 999;
}

.about-button:hover {
  background-color: #ff9800;
}

